home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / ppp.preinst < prev    next >
Encoding:
Text File  |  2010-08-08  |  265 b   |  18 lines

  1. #!/bin/sh -e
  2.  
  3. case "$1" in
  4.     install|upgrade)
  5.     if dpkg --compare-versions "$2" le "2.4.5-4"; then
  6.  
  7.     if dpkg --compare-versions "$2" le "2.4.4b1-1"; then
  8.     rm -f /etc/init.d/ppp
  9.     update-rc.d ppp remove
  10.     fi
  11.  
  12.     rm -f /etc/apm/event.d/ppp
  13.     fi
  14.     ;;
  15. esac
  16.  
  17.  
  18.